home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Windows Set
/
The Complete Windows Set.iso
/
MICROLIN
/
ATLWIN.MSL
next >
Wrap
Text File
|
1991-12-29
|
493b
|
18 lines
' ***************************************************
' * Atlanta Windows RBBS Logon Script *
' ***************************************************
' Note: ^M means Enter key
first$ = "firstname^M"
last$ = "lastname^M"
pw$ = "password^M"
MPRINT "Atlanta Windows Logon Script"
WAITFOR "What is your FIRST name? "
RPRINT first$
WAITFOR "What is your LAST name? "
RPRINT last$
WAITFOR "Enter Password (dots echo)? "
RPRINT pw$
MPRINT "Sign-on Complete..."
END